From b7ad3bcf96f9851503229d90b259e3da11f506a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Sun, 19 Sep 2021 10:52:36 +0200 Subject: [PATCH] build: Print toolchain in summary Would be nice to print CFLAGS and LDFLAGS as well, but that's not as easy. --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index dd6e9d6471..bea2015429 100644 --- a/meson.build +++ b/meson.build @@ -899,6 +899,9 @@ summary('Sysprof support', libsysprof_capture_dep.found(), section: 'Features') summary('Colord support', colord_dep.found(), section: 'Features') summary('Tracker support', tracker3_dep.found(), section: 'Features') +summary('Compiler', cc.get_id(), section: 'Toolchain') +summary('Linker', cc.get_linker_id(), section: 'Toolchain') + # Build summary('Debugging', get_option('debug'), section: 'Build') summary('Optimization', get_option('optimization'), section: 'Build') -- 2.30.2